-- card: 42102 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 4507 -- name: -- part 4 (button) -- low flags: 00 -- high flags: 0000 -- rect: left=218 top=291 right=314 bottom=247 -- title width / last selected line: 0 -- icon id / first selected line: 1014 / 1014 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: ----- HyperTalk script ----- on mouseUp visual effect wipe down go to card id 41109 end mouseUp -- part 13 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=184 top=149 right=275 bottom=376 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 2 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: ----- HyperTalk script ----- on mouseUp hide card field 1 end mouseUp -- part 15 (button) -- low flags: 00 -- high flags: 0000 -- rect: left=170 top=271 right=295 bottom=196 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: ----- HyperTalk script ----- on mouseUp if visible of card field 1 then hide card field 1 else show card field 1 end mouseUp -- part contents for background part 1 ----- text ----- A container is a place you can store a value—a number or a piece of text. Containers include: Put 5 into it --a place for temporary results Put "Good Morning" into the message box--Synonymns are msg, message, or message window. Add field "New Charge" to field "Total" Put "this text" into selection--replaces current selection. A temporary container you name and use within the script.* -- part contents for background part 44 ----- text ----- Containers it [the] message fields [the] selection variable -- part contents for background part 43 ----- text ----- 267,189 -- part contents for background part 2 ----- text ----- Introduction to HyperTalk (cont.) -- part contents for card part 13 ----- text ----- A local variable is named and used temporarily within a script. "Put 3 into TempValue", for example. A global variable retains its value across scripts. For example, "global userName".